This patch prevents the xm-test console library from duplicating the
authoremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Wed, 9 Nov 2005 11:39:38 +0000 (12:39 +0100)
committeremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Wed, 9 Nov 2005 11:39:38 +0000 (12:39 +0100)
debugging output, when it's turned on.  This just makes it easier to
read.

Signed-off-by: Dan Smith <danms@us.ibm.com>
tools/xm-test/lib/XmTestLib/Console.py

index b4ef40fe57adb61c28981b042ebce8a0f848d46b..cff780d9956ec4401449122b48e1aa882959f6ac 100644 (file)
@@ -83,8 +83,6 @@ class XmConsole:
             raise ConsoleError("Console didn't respond")
 
     def __addToHistory(self, line):
-        if self.debugMe:
-            print ">" + line
         self.historyBuffer.append(line);
         self.historyLines += 1;
         if self.historyLines > self.historyLimit: